;Creating pictures for RIGView using ASM isn't required because RIGConverter
;handles it automatically.
;
;If you want to do it anyway, then here is the file format:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


	ret			;so TI-OS won't try to run the program
	.db	"RIGv2"		;RIG detection string (not zero-terminated)
	.db	"Zero-Terminated Description",0
	

	;RLE compressed data goes here.
	;It must decompress into two 768-byte
	;layers (1536 bytes Total).  The bytes
	;are arranged in Top-Bottom,Left-Right
	;order to make the compression more
	;efficient.

.end
END